home *** CD-ROM | disk | FTP | other *** search
/ Champak 145 / (Vol 145) Dec 21 2011.iso / Games / kill-the-dragons.swf / scripts / DefineButton2_415 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2011-12-21  |  283 b   |  17 lines

  1. on(release){
  2.    tellTarget(_root)
  3.    {
  4.       page += 10;
  5.       if(page > maxScores)
  6.       {
  7.          page = maxScores;
  8.       }
  9.       loadScores();
  10.       ScoreText.Last._visible = true;
  11.    }
  12.    if(_root.page > _root.maxScores - 20)
  13.    {
  14.       _visible = false;
  15.    }
  16. }
  17.